@charset "UTF-8";

* {
    box-sizing: border-box;
}

html, body {
    min-width: 1200px;
    background-color: #fff;
}

body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}

ol, li, ul, dl, dt, dd {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

h1, h2, h3, h4, h5, h6, i, strong {
    font-weight: normal;
}

img {
    vertical-align: middle;
    border: none;
    width: 100%;
}

i {
    font: inherit;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: transparent;
}

a:hover {
    text-decoration: none;
    outline: none;
}

select::-ms-expand {
    display: none;
}

a:active, a:hover {
    outline: 0
}

.main:after,
ul:after,
.clearfix::before,
.clearfix::after {
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

input, select, option ,textarea{
    vertical-align: middle;
    border-radius: 0px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

input[type="text"], input[type="button"], input[type="submit"], input[type="reset"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
}

.overflow {
    overflow: hidden;
}



body, button, input, select, textarea {
    font: 16px/1.5 Microsoft YaHei, Arial, sans-serif;
}

video {
    display: block;
    outline: none;
}


/* div内显示一行，超出部分用省略号显示 */
.jz1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* div内显示两行或三行，超出部分用省略号显示 */
.jz2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.jz3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



/* 图片放大 */
.pic-scale {
    overflow: hidden;
    cursor: pointer;
}
.pic-scale img {
	transition: all .5s;
}
.pic-scale:hover img {
	transform: scale(1.05);
	transition: all .5s;
}